home *** CD-ROM | disk | FTP | other *** search
- /*
- * Test file for REMCMMNT.C and COMMCONV.C
- *
- * Jari Laaksonen
- * Arkkitehdinkatu 30 A 2
- * FIN-33720 Tampere
- * FINLAND
- * Fidonet: 2:221/360.20
- * Internet: jla@to.icl.fi
- */
-
- #include <stdio.h>
-
- int main()
- {
- /*
- comment */ int a; /* comment continues in same line
- */
- char ch = '\"'; /* double quote but not start of a string */
- printf ("normal statement"); /* comment */
- printf ("normal statement"); // comment
-
- /* C comment in one line */
-
- // C++ comment in one line
-
- /* C comment
- in several
- lines
- printf ("// not a comment");
- */
-
- /* C comment
- in several lines */
-
- // C++ comment in \
- several \
- lines
-
- // C comment /* in C++ comment */
-
- /* C++ comment // in C comment */
-
- /*
- C++ comment // in C comment
- */
-
- printf ("this /* is not // a comment * * ! ");
- printf ("this /* is not a comment * * ! ");
- printf ("this // is not a comment * * ! ");
- printf ("this */ is not a comment * * ! ");
-
- return 0;
- }
-